100
|
How can I change the group's caption

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.AddItem("Item 3")
var_Group.Caption = "new caption"
var_Group.Expanded = true
|
99
|
How can I get the number or count of items in a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.AddItem("Item 3")
var_Group.AddItem(String(var_Group.Count))
var_Group.Expanded = true
|
98
|
How can I access an item in a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.AddItem("Item 3")
var_Group.Item(1).Bold = true
var_Group.Expanded = true
|
97
|
How can I remove all items, from a group
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.AddItem("Item 3")
var_Group.Clear()
var_Group.Expanded = true
|
96
|
How can I remove an item, from a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.AddItem("Item 3")
var_Group.RemoveItem(1)
var_Group.Expanded = true
|
95
|
How can I add a new item to a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1",1)
var_Group.Expanded = true
|
94
|
How can I add a new item to a group

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Groups.Add("Group 1").AddItem("Item 1")
|
93
|
How can I add a new item to a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
|
92
|
How can I get the groups as they are listed
OleObject oExplorerBar,var_Groups
oExplorerBar = ole_1.Object
var_Groups = oExplorerBar.Groups
var_Groups.Add("Group 1")
var_Groups.Add("Group 2")
var_Groups.Add("Group 3")
|
91
|
How can I access a group by position

OleObject oExplorerBar,var_Groups
oExplorerBar = ole_1.Object
var_Groups = oExplorerBar.Groups
var_Groups.Add("Group 1")
var_Groups.Add("Group 2")
var_Groups.Add("Group 3")
var_Groups.ItemByPos(1).Bold = true
|
90
|
How can I access a group

OleObject oExplorerBar,var_Groups
oExplorerBar = ole_1.Object
var_Groups = oExplorerBar.Groups
var_Groups.Add("Group 1")
var_Groups.Add("Group 2")
var_Groups.Add("Group 3")
var_Groups.Item(1).Bold = true
|
89
|
How can I clear the groups collection
OleObject oExplorerBar,var_Groups
oExplorerBar = ole_1.Object
var_Groups = oExplorerBar.Groups
var_Groups.Add("Group 1")
var_Groups.Add("Group 2")
var_Groups.Add("Group 3")
var_Groups.Clear()
|
88
|
How can I remove a group

OleObject oExplorerBar,var_Groups
oExplorerBar = ole_1.Object
var_Groups = oExplorerBar.Groups
var_Groups.Add("Group 1")
var_Groups.Add("Group 2")
var_Groups.Add("Group 3")
var_Groups.Remove(1)
|
87
|
How can I add a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.Expanded = true
|
86
|
How do I count the number of groups
OleObject oExplorerBar,var_Groups
oExplorerBar = ole_1.Object
var_Groups = oExplorerBar.Groups
var_Groups.Add("Group 1")
var_Groups.Add("Group 2")
var_Groups.Add("Group 3")
var_Groups.Add(String(var_Groups.Count))
|
85
|
How can I display pictures with a custom size, instead icons, in the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set 1"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set 1"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set 2"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set 2"
oExplorerBar.ShortcutPicture("Set 1",oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)"))
oExplorerBar.ShortcutPicture("Set 2",oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)"))
oExplorerBar.ShortcutPictureWidth = 32
oExplorerBar.ShortcutPictureHeight = 32
oExplorerBar.ShortcutBarHeight = 32
|
84
|
How can I display pictures instead icons, in the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set 1"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set 1"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set 2"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set 2"
oExplorerBar.ShortcutPicture("Set 1",oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)"))
oExplorerBar.ShortcutPicture("Set 2",oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\auction.gif`)"))
oExplorerBar.ShortcutBarHeight = 44
|
83
|
How can I change the visual appearance of the shortcut bar, using EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutResizeBackColor = 33554432 /*0x2000000*/
oExplorerBar.ShortcutBarSelCaptionBackColor = 16777216 /*0x1000000*/
oExplorerBar.ShortcutBarSelBackColor = 16777216 /*0x1000000*/
oExplorerBar.BackColorGroup = 16777216 /*0x1000000*/
|
82
|
How can I change the visual appearance of the separator between groups and the shortcut bar, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutResizeBackColor = 16777216 /*0x1000000*/
oExplorerBar.ExpandShortcutCount = 1
|
81
|
How do I change the background color of the separator between groups and the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutResizeBackColor = RGB(255,0,0)
oExplorerBar.ExpandShortcutCount = 1
|
80
|
How can I change the visual appearance of the shortcut bar, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutBarSelCaptionBackColor = 16777216 /*0x1000000*/
oExplorerBar.ExpandShortcutCount = 1
|
79
|
How do I change the selection background color in the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutBarSelCaptionBackColor = RGB(255,0,0)
oExplorerBar.ExpandShortcutCount = 1
|
78
|
How can I change the visual appearance of the shortcut bar, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutBarSelBackColor = 16777216 /*0x1000000*/
|
77
|
How do I change the selection background color in the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutBarSelBackColor = RGB(255,0,0)
|
76
|
How can I change the visual appearance of the shortcut bar, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutBarBackColor = 16777216 /*0x1000000*/
|
75
|
How do I change the background color in the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ShortcutBarBackColor = RGB(255,0,0)
|
74
|
How can I programmatically change expand or collapse the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ExpandShortcutCount = 1
|
73
|
How do I change the icon for the expanding or collapsing the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ExpandShortcutImage = 3
|
72
|
How can I enable or disable resizing the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ExpandShortcutCount = 1
oExplorerBar.AllowResizeShortcutBar = false
|
71
|
How do I specify the height of the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ExpandShortcutCount = 1
oExplorerBar.ShortcutBarHeight = 16
|
70
|
How do I select a shortcut

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ExpandShortcutCount = 1
oExplorerBar.SelectShortcut = "Set <img>2</img>"
|
69
|
How do I show or hide the shortcut bar

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ShowShortcutBar = true
oExplorerBar.Groups.Add("Group 1").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 2").Shortcut = "Set <img>1</img>"
oExplorerBar.Groups.Add("Group 3").Shortcut = "Set <img>2</img>"
oExplorerBar.Groups.Add("Group 4").Shortcut = "Set <img>2</img>"
oExplorerBar.ExpandShortcutCount = 1
|
68
|
How do I access the groups collection
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Groups.Add("Group 1")
|
67
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.FormatAnchor(false,"<b><u><fgcolor=FF0000> </fgcolor></u></b>")
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
oExplorerBar.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = 1
|
66
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.FormatAnchor(false,"<b><u><fgcolor=FF0000> </fgcolor></u></b>")
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item <a1><b>1</b></a>").CaptionFormat = 1
var_Group.Expanded = true
|
65
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
oExplorerBar.FormatAnchor(true,"<b><u><fgcolor=FF0000> </fgcolor></u></b>")
oExplorerBar.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = 1
|
64
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.HighlightItemType = 0
oExplorerBar.HandCursor = false
oExplorerBar.FormatAnchor(true,"<b><u><fgcolor=FF0000> </fgcolor></u></b>")
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item <a1><b>1</b></a>").CaptionFormat = 1
var_Group.Expanded = true
|
63
|
How can I add several pictures and icons to an item

OleObject oExplorerBar,var_Group,var_Item
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.ItemHeight = 48
var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
var_Item.Image = 2
var_Item.CaptionFormat = 1
var_Group.Expanded = true
|
62
|
How can I add several pictures and icons to an item
OleObject oExplorerBar,var_Group,var_Item
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.ItemHeight = 48
var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
var_Item.Image = 2
var_Item.CaptionFormat = 1
var_Group.Expanded = true
|
61
|
How can I add several pictures to an item

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.ItemHeight = 48
var_Group.AddItem("<img>pic1</img> text <img>pic2</img>").CaptionFormat = 1
var_Group.Expanded = true
|
60
|
How can I add several pictures to a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
oExplorerBar.GroupHeight = 48
var_Group = oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")
var_Group.Image = 2
var_Group.CaptionFormat = 1
var_Group.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.Expanded = true
|
59
|
How can I add several pictures and icons to a group

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
oExplorerBar.GroupHeight = 48
oExplorerBar.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>").CaptionFormat = 1
|
58
|
How can I add several pictures to a group

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
oExplorerBar.GroupHeight = 48
var_Group = oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>")
var_Group.CaptionFormat = 1
var_Group.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)")
var_Group.AddItem("Item 1")
var_Group.AddItem("Item 2")
var_Group.Expanded = true
|
57
|
How can I add several pictures to a group

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif")
oExplorerBar.HTMLPicture("pic2","c:\exontrol\images\auction.gif")
oExplorerBar.GroupHeight = 48
oExplorerBar.Groups.Add("<img>pic1</img> text <img>pic2</img>").CaptionFormat = 1
|
56
|
How do I force refreshing the control
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.Expanded = true
var_Group.AddItem("Item 1")
oExplorerBar.Refresh()
|
55
|
How can show or hide the focus rectangle

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.ShowFocusRect = false
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.Expanded = true
var_Group.AddItem("Item 1")
|
54
|
I've seen that the width of the tooltip is variable. Can I make it larger

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipWidth = 328
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
|
53
|
How do I let the tooltip being displayed longer

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipPopDelay = 10000
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
|
52
|
Can I change the default border of the tooltip, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Background(64,16777216 /*0x1000000*/)
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
|
51
|
Can I change the background color for the tooltip

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Background(65,RGB(255,0,0))
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."
|
50
|
Does the tooltip support HTML format

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>"
|
49
|
Can I change the forecolor for the tooltip

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Background(66,RGB(255,0,0))
oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
|
48
|
Can I change the foreground color for the tooltip

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>"
|
47
|
Can I change the font for the tooltip

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Groups.Add("ToolTip").ToolTip = "<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font"
|
46
|
Can I change the font for the tooltip

OleObject oExplorerBar,var_StdFont
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
var_StdFont = oExplorerBar.ToolTipFont
var_StdFont.Name = "Tahoma"
var_StdFont.Size = 14
oExplorerBar.ToolTipWidth = 364
oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
|
45
|
How do I disable showing the tooltip for all control
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 0
oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
|
44
|
How do I show the tooltip quicker
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.ToolTipDelay = 1
oExplorerBar.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group."
|
43
|
How do I call your x-script language

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
var_Group = oExplorerBar.ExecuteTemplate("Groups.Add(`Group 1`)")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
|
42
|
How do I call your x-script language

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Template = "BackColor = RGB(255,0,0)"
|
41
|
How can I hide a tooltip when the item exceeds its area, so ... are displayed
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.AllowTooltip = false
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.Expanded = true
var_Group.AddItem("This isa very long text that should break the control in several pieces")
|
40
|
How can I show a tooltip when the item exceeds its area, so ... are displayed

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.AllowTooltip = true
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.Expanded = true
var_Group.AddItem("This isa very long text that should break the control in several pieces")
|
39
|
How do I specify the distance between two groups

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.BorderGroupHeight = 0
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
|
38
|
How can I change the expand / collapse buttons

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.ExpandIcon(true,1)
oExplorerBar.ExpandIcon(false,2)
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
37
|
How do I enable or disable the control
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.Enabled = false
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
|
36
|
How do I hide the icons in the right side of the group, the expand / collapse buttons

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.DisplayExpandIcon = false
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
35
|
Is there any option to stop using the hand shape cursor, when the cursor hovers an item
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.HandCursor = false
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 0
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
34
|
How do I specify the color to highlight the item
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HyperLinkColor = RGB(255,0,0)
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
33
|
How can I expand or collapse a group when I click only its right icon
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.ExpandOnClick = false
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
32
|
How do I remove the control's borders
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Appearance = 0
oExplorerBar.BorderWidth = 0
oExplorerBar.BorderHeight = 0
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
31
|
How do I specify width or the height of the control's borders
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Appearance = 0
oExplorerBar.BorderWidth = 0
oExplorerBar.BorderHeight = 0
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
30
|
How do I access the item from the point
OleObject oExplorerBar
oExplorerBar = ole_1.Object
|
29
|
How do I access the group from the point
OleObject oExplorerBar
oExplorerBar = ole_1.Object
|
28
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 4
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
27
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 3
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
26
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 2
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
25
|
How do I specify to highlight the items in the group, when the cursor hovers the item
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.HighlightItemType = 1
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1").Image = 1
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
24
|
How do I specify the way the control highlight the items in the group
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
oExplorerBar.HighlightItemType = 0
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
23
|
Is there any function to avoid painting the control while adding multiple items and groups
OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.BeginUpdate()
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2").AddItem("Item 2")
oExplorerBar.EndUpdate()
|
22
|
How do I decrease the delay to scroll a group
OleObject oExplorerBar,var_Group,var_Group1
oExplorerBar = ole_1.Object
oExplorerBar.DelayScroll = 0
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
var_Group1 = oExplorerBar.Groups.Add("Group 2")
var_Group1.AddItem("Item 2")
var_Group1.Expanded = true
|
21
|
How do I display icons

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.SmallIcons = true
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Groups.Add("Group 1").Image = 1
|
20
|
How do I display 32x32 icons

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.SmallIcons = false
oExplorerBar.GroupHeight = 36
oExplorerBar.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oExplorerBar.Groups.Add("Group 1").Image = 1
|
19
|
How do I specify the height of the groups

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.GroupHeight = 40
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2")
|
18
|
How do I change the visual appearance of the groups
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.GroupAppearance = 1
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2")
|
17
|
How do I change the visual appearance of the groups, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.BackColorGroup = 16777216 /*0x1000000*/
oExplorerBar.Groups.Add("Group 1")
oExplorerBar.Groups.Add("Group 2")
|
16
|
How do I change the background color for the groups
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.BackColorGroup = RGB(255,0,0)
oExplorerBar.BackColorGroup2 = RGB(255,0,0)
oExplorerBar.Groups.Add("Group 1")
|
15
|
How do I change the background color for the groups

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.BackColorGroup = RGB(255,0,0)
oExplorerBar.Groups.Add("Group 1")
|
14
|
How do I change the control's foreground color

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.ForeColor = RGB(0,0,255)
oExplorerBar.ForeColorGroup = RGB(255,0,0)
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
oExplorerBar.Groups.Add("Group 2")
|
13
|
How can I change the control's font

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Font.Name = "Tahoma"
oExplorerBar.Groups.Add("Group 1")
|
12
|
How do I change the control's foreground color

OleObject oExplorerBar,var_Group
oExplorerBar = ole_1.Object
oExplorerBar.ForeColor = RGB(255,0,0)
var_Group = oExplorerBar.Groups.Add("Group 1")
var_Group.AddItem("Item 1")
var_Group.Expanded = true
|
11
|
How do I change the control's background color

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.BackColor = RGB(200,200,200)
|
10
|
How do I change the control's border, using your EBN files

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oExplorerBar.Appearance = 16777216 /*0x1000000 | */
|
9
|
How do I remove the control's border
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Appearance = 0
|
8
|
How do I put a picture on the center of the control
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 17
|
7
|
How do I resize/stretch a picture on the control's background
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 49
|
6
|
How do I put a picture on the control's center right bottom side

OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 34
|
5
|
How do I put a picture on the control's center left bottom side
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 32
|
4
|
How do I put a picture on the control's center top side
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 1
|
3
|
How do I put a picture on the control's right top corner
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 2
|
2
|
How do I put a picture on the control's left top corner
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oExplorerBar.PictureDisplay = 0
|
1
|
How do I put a picture on the control's background
OleObject oExplorerBar
oExplorerBar = ole_1.Object
oExplorerBar.Picture = oExplorerBar.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
|